home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / rsyslog.conf < prev    next >
Text File  |  2009-10-15  |  1KB  |  54 lines

  1. #  /etc/rsyslog.conf    Configuration file for rsyslog.
  2. #
  3. #            For more information see
  4. #            /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html
  5. #
  6. #  Default logging rules can be found in /etc/rsyslog.d/50-default.conf
  7.  
  8.  
  9. #################
  10. #### MODULES ####
  11. #################
  12.  
  13. $ModLoad imuxsock # provides support for local system logging
  14. $ModLoad imklog   # provides kernel logging support (previously done by rklogd)
  15. #$ModLoad immark  # provides --MARK-- message capability
  16.  
  17. $KLogPath /var/run/rsyslog/kmsg
  18.  
  19. # provides UDP syslog reception
  20. #$ModLoad imudp
  21. #$UDPServerRun 514
  22.  
  23. # provides TCP syslog reception
  24. #$ModLoad imtcp
  25. #$InputTCPServerRun 514
  26.  
  27.  
  28. ###########################
  29. #### GLOBAL DIRECTIVES ####
  30. ###########################
  31.  
  32. #
  33. # Use traditional timestamp format.
  34. # To enable high precision timestamps, comment out the following line.
  35. #
  36. $ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat
  37.  
  38. #
  39. # Set the default permissions for all log files.
  40. #
  41. $FileOwner syslog
  42. $FileGroup adm
  43. $FileCreateMode 0640
  44. $DirCreateMode 0755
  45. $Umask 0022
  46. $PrivDropToUser syslog
  47. $PrivDropToGroup syslog
  48.  
  49. #
  50. # Include all config files in /etc/rsyslog.d/
  51. #
  52. $IncludeConfig /etc/rsyslog.d/*.conf
  53.  
  54.